home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Pro 2005 June (DVD)
/
DPPRO0605DVD.iso
/
Install
/
program files
/
Borland
/
BDS
/
3.0
/
Objrepos
/
DelphiWin32
/
PASSWORD.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
2004-10-22
|
411 b
|
29 lines
unit PASSWORD;
interface
uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
Buttons;
type
TPasswordDlg = class(TForm)
Label1: TLabel;
Password: TEdit;
OKBtn: TButton;
CancelBtn: TButton;
private
{ Private declarations }
public
{ Public declarations }
end;
var
PasswordDlg: TPasswordDlg;
implementation
{$R *.dfm}
end.